
.tarjetas{
    width: 80%;
    height: 90%;
    margin:  auto auto;
    border-style: solid;
    border-radius: 15px;
    border-color: rgb(5, 32, 61,0.50);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
 
}

.card{

    width:auto;
    height: 400px;
    margin: 15px auto;
    display: flex;
    align-items: center;
    flex-direction: column;

}

.card h2{
    margin: 15px 0;
}

.card .imagen{

    height: 80%;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid rgb(5, 32, 61,0.50) ;
    border-radius:15px ; 
    overflow: hidden;
   
 }
   
.card .imagen img{
   width: 95%; 
   height: 95%; 
   margin: auto;
   object-fit: fill;
   object-position: center ;
   
   
}

.card .imagen .img-1{
    object-position: top ;
}

.caracteristicas{
    margin-left: 10%;
    height: 80%;
    width: 50%;
}

.tabs{
    width: 90%;
    min-height: 68px;
    margin: 0 auto;
    list-style:none;
    display: grid;
    background-color: #05203d;
    border-radius: 10px;
    margin-top:auto;  margin-bottom:auto  ;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(1,1fr);
    gap: 5px;
    padding: 0;
} 
.active{
    background-color: rgb(34, 80, 139);
    border-radius: 10px;
    
}
.galeria{
    width: 90%;
    height: auto;
    margin: auto;
    grid-column: 2/3;
}

.galeria h2{
  text-align: center;
}
.marco{
    margin: auto;
}